home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / ds5000.md / RCS / sigMach.h,v < prev    next >
Encoding:
Text File  |  1989-07-08  |  1.8 KB  |  70 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     89.07.08.14.56.07;  author nelson;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Initial version from DECWRL.
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @/*
  27.  * sigMach.h --
  28.  *
  29.  *     Machine dependent data structures and procedure headers exported by the
  30.  *     the signal module.  These are are for the sparc hardware.
  31.  *
  32.  * Copyright (C) 1989 by Digital Equipment Corporation, Maynard MA
  33.  *
  34.  *            All Rights Reserved
  35.  *
  36.  * Permission to use, copy, modify, and distribute this software and its 
  37.  * documentation for any purpose and without fee is hereby granted, 
  38.  * provided that the above copyright notice appear in all copies and that
  39.  * both that copyright notice and this permission notice appear in 
  40.  * supporting documentation, and that the name of Digital not be
  41.  * used in advertising or publicity pertaining to distribution of the
  42.  * software without specific, written prior permission.  
  43.  *
  44.  * Digitial disclaims all warranties with regard to this software, including
  45.  * all implied warranties of merchantability and fitness.  In no event shall
  46.  * Digital be liable for any special, indirect or consequential damages or
  47.  * any damages whatsoever resulting from loss of use, data or profits,
  48.  * whether in an action of contract, negligence or other tortious action,
  49.  * arising out of or in connection with the use or performance of this
  50.  * software.
  51.  *
  52.  * $Header: /sprite/src/lib/include/sun4.md/RCS/sigMach.h,v 1.1 89/01/25 13:36:48 mendel Exp $ SPRITE (Berkeley)
  53.  */
  54.  
  55. #ifndef _SIGMACH
  56. #define _SIGMACH
  57.  
  58. /*
  59.  * The different machine dependent codes for an arithmetic fault.
  60.  */
  61. #define SIG_OVERFLOW    1
  62.  
  63. /*
  64.  * The different machine dependent codes for an illegal instruction signal
  65.  */
  66. #define SIG_FP_EXCEPTION    4
  67.  
  68. #endif _SIGMACH
  69. @
  70.